web3.js@0.2x.x web3.eth.gasPrice
web3.eth.gasPrice
現在のガスプライスを返します。
ガスプライスの値は、最新の x ブロックの中央値です。
読み取り専用プロパティです。
非同期コード
web3.eth.getGasPrice(callback(error, result){ ... })
戻り値
BigNumber
現在のガスプライスを表す BigNumber のインスタンスです。
単位は wei
サンプルコード
code:example.js
var gasPrice = web3.eth.gasPrice;
console.log(gasPrice.toString(10)); // "10000000000000"
参考